home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscClipTextPalette / MiscClipTextFieldInspector.h < prev    next >
Encoding:
Text File  |  1995-07-12  |  887 b   |  39 lines

  1. //
  2. //    MiscClipTextFieldInspector.h -- IB inspector of MiscClipTextField(Cell)
  3. //        Written and Copyright (c) 1995 by Balazs Pataki. 
  4. //                Version 1.0.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. #import <appkit/appkit.h>
  15.  
  16. #import <apps/InterfaceBuilder.h>
  17.  
  18. @interface MiscClipTextFieldInspector : IBInspector
  19. {
  20.     id    backgroundGrayMatrix;
  21.     id    textGrayMatrix;
  22.     id    alignmentMatrix;
  23.     id    borderMatrix;
  24.     id    clipOnMatrix;
  25.     id    tagForm;
  26.     id    clipDelimitersField;
  27.     id    clipperStringField;
  28. }
  29.  
  30. + initialize;
  31.  
  32. - init;
  33.  
  34. - ok:sender;
  35. - revert:sender;
  36.  
  37. - (BOOL)wantsButtons;
  38.  
  39. @end